home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Vollversion / CamD / development / examples / capture / smakefile < prev    next >
Makefile  |  2000-05-15  |  780b  |  34 lines

  1. #
  2. # SAS C 6.1 Makefile for MIDI Capture utility
  3. #
  4. # APP    = the application name
  5. # CFILES = source files (may include SimpleRexx_tm.c and $(APP)_events.c)
  6. # OFILES = object files (may include SimpleRexx_tm.o and $(APP)_events.o)
  7. # HFILES = header files (may include SimpleRexx_tm.h)
  8.  
  9. APP    = capture
  10. CFILES    = $(APP).c $(APP)_tm.c $(APP)_events.c
  11. OFILES    = $(APP).o $(APP)_tm.o $(APP)_events.o
  12. HFILES    = $(APP).h $(APP)_text.h $(APP)_tm.h $(APP)_tm_text.h
  13.  
  14. LISTLIB = //lib/camdlist.lib
  15.  
  16. # Aztec C Makefile
  17.  
  18. CFLAGS    = nolink ansi unsignedchars multicharconstants debug=fullflush
  19.  
  20. .c.o:
  21.     SC $*.c $(CFLAGS)
  22.  
  23. .a.o:
  24.     SC $*.a nolink
  25.  
  26. all:    $(APP).o $(APP)_tm.o $(APP)
  27.  
  28. #nostdio
  29.  
  30. $(APP): $(OBJS)
  31.         SLINK lib:c.o $(OFILES) noicons library $(LISTLIB) lib:sc.lib lib:amiga.lib to $(APP)
  32.     
  33.  
  34.